[index]

Next Repeat Control Statement

Syntax: next repeat

Description

The next repeat control statement allows you to make an exception to a loop's normal operation. next repeat causes script execution to jump to the beginning of the current loop, skipping the commands between itself and the end repeat statement. If the loop has an index, it is incremented normally.

Examples

on mouseUp repeat with i =1 to 5 if i=3 then next repeat put i after field "test" end repeat end mouseUp
This text has been mechanically extracted from the Oracle Media Objects 1.0.4.9 MediaTalk Reference, © 1995 Oracle Corporation, and is provided here solely for educational/historical purposes.